body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #a0b0d0;
    padding: 20px;
    background-color: #fff;
}

.shadow-text {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(243, 240, 240, 0.481);
    margin-bottom: 20px;
}

.normal-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.capitalize-text {
    text-transform: capitalize;
    margin-bottom: 15px;
}

.uppercase-text {
    text-transform: uppercase;
    text-align: right;
    margin-bottom: 15px;
}

.lowercase-text {
    text-transform: lowercase;
    margin-bottom: 20px;
}

.drop-cap-text {
    font-size: 15px;
}

.drop-cap-text::first-line {
    font-weight: bold;
}

.drop-cap-text::first-letter {
    font-size: 45px;
    font-weight: bold;
    float: left;
    line-height: 40px;
    padding-right: 8px;
    margin-top: 4px;
}